[svn:parrot] r41085 - trunk/ext/SQLite3

tene at svn.parrot.org tene at svn.parrot.org
Sun Sep 6 22:11:15 UTC 2009


Author: tene
Date: Sun Sep  6 22:11:15 2009
New Revision: 41085
URL: https://trac.parrot.org/parrot/changeset/41085

Log:
Minor ext/SQLite3 fixes

Modified:
   trunk/ext/SQLite3/SQLite3.pir
   trunk/ext/SQLite3/gen_sqlite3.pl
   trunk/ext/SQLite3/test.pir

Modified: trunk/ext/SQLite3/SQLite3.pir
==============================================================================
--- trunk/ext/SQLite3/SQLite3.pir	Sun Sep  6 22:04:14 2009	(r41084)
+++ trunk/ext/SQLite3/SQLite3.pir	Sun Sep  6 22:11:15 2009	(r41085)
@@ -1,7 +1,7 @@
 # Copyright (C) 2008-2009, Parrot Foundation.
 # $Id$
 
-.namespace ['SQLite']
+.namespace ['SQLite3']
 
 .const int SQLITE_OK         =   0   # Successful result
 # beginning-of-error-codes

Modified: trunk/ext/SQLite3/gen_sqlite3.pl
==============================================================================
--- trunk/ext/SQLite3/gen_sqlite3.pl	Sun Sep  6 22:04:14 2009	(r41084)
+++ trunk/ext/SQLite3/gen_sqlite3.pl	Sun Sep  6 22:11:15 2009	(r41085)
@@ -36,7 +36,7 @@
 qq{
 ##GENERATED FILE DO NOT EDIT##
 ##GENERATED BY gen_sqlite3.pl##
-.namespace ['SQLite']
+.namespace ['SQLite3']
 
 .const int SQLITE_OK         =   0   # Successful result
 # beginning-of-error-codes

Modified: trunk/ext/SQLite3/test.pir
==============================================================================
--- trunk/ext/SQLite3/test.pir	Sun Sep  6 22:04:14 2009	(r41084)
+++ trunk/ext/SQLite3/test.pir	Sun Sep  6 22:11:15 2009	(r41085)
@@ -3,7 +3,7 @@
 # $Id$
 
 .sub 'main'
-load_bytecode 'SQLite3'
+load_bytecode 'SQLite3.pir'
 
 $P0 = get_global [ 'SQLite' ], 'open'
 $P1 = $P0("test.db")


More information about the parrot-commits mailing list