Error compiling (1 Viewer)

Status
Not open for further replies.

boombastic

Portal Pro
November 17, 2007
86
2
I tried and compile Moving picture following this guide:

DevelopmentEnvironmentMain - moving-pictures - Intro section of instructions to get up a working development environment setup to contribute to Moving Pictures. - Project Hosting on Google Code

All is ok until i start the debug:

i always get en error on this line:

SQLiteResultSet resultSet = dbClient.Execute("select * from sqlite_master where type='table' and name = '" + tableAttr.TableName + "'");


in the section:


try {
// check if the table exists in the database, if not, create it
SQLiteResultSet resultSet = dbClient.Execute("select * from sqlite_master where type='table' and name = '" + tableAttr.TableName + "'");
if (resultSet.Rows.Count == 0) {
resultSet = dbClient.Execute("create table " + tableAttr.TableName + " (id INTEGER primary key )");
logger.Info("Created " + tableAttr.TableName + " table.");
}



Could someone give an advice please?

It's my first time in compiling.
:D
 

Inker

Retired Team Member
  • Premium Supporter
  • December 6, 2004
    2,055
    318
    Well, what error do you get? "An error" doesn't exact say much.
     

    fforde

    Community Plugin Dev
    June 7, 2007
    2,667
    1,702
    42
    Texas
    Home Country
    United States of America United States of America
    This is not really the place to ask for help building Moving Pictures from scratch. If you are interested in contributing to the project or are interested in helping with testing, jump in IRC and we will help you get things squared away.
     
    Status
    Not open for further replies.

    Users who are viewing this thread

    Top Bottom